home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Skunkware 5
/
Skunkware 5.iso
/
src
/
X11
/
tclMotif-1.4
/
programs
/
prog103
< prev
next >
Wrap
Text File
|
1995-06-29
|
486b
|
22 lines
# dialog test with unmanage on cancel
xtAppInitialize -class Program
xmPushButton .button managed -labelString "file selection: push me"
.button activateCallback doFile
proc doFile {} {
xmFileSelectionDialog .fileSD managed \
-background red
[.fileSD parent] setValues \
-width 600 -height 200
.fileSD.Text setValues \
-background green
.fileSD.DirList setValues \
-background pink
.fileSD cancelCallback ".fileSD unmanageChild"
}
. realizeWidget
. mainLoop